home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950929-19951130 / 000088_news@columbia.edu_Fri Oct 13 00:34:10 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20744
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 12 Oct 1995 20:34:16 -0400
  3. Received: by apakabar.cc.columbia.edu id AA29480
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 12 Oct 1995 20:34:15 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: kermit-370 sliding window
  9. Date: 13 Oct 1995 00:34:10 GMT
  10. Organization: Columbia University
  11. Lines: 39
  12. Message-Id: <45kc62$sp6@apakabar.cc.columbia.edu>
  13. References: <Pine.SOL.3.91.951011165155.1001C-100000@mp>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <Pine.SOL.3.91.951011165155.1001C-100000@mp>,
  18. Srinivas Krishnamurthy  <t90kxs1@mp.cs.niu.edu> wrote:
  19. >Q1. Does IBM SYSTEM/370 MVS/TSO KERMIT ver 4.3.1 support sliding windows?
  20. >
  21. No.  That's because the underlying operating system does not support
  22. full-duplex communication, which is a prerequisite for sliding windows.
  23.  
  24. >Q2. Has anyone got kermit to transfer files in non-fullscreen mode over 
  25. >    SprintNet (formerly Telenet) lines?
  26. >
  27. I believe so, but it's always best to get a direct answer from someone who
  28. has actually done it.  It might be as simple as telling the Kermit program
  29. on your end to "do ibm-linemode", which is a built-in macro in C-Kermit and
  30. MS-DOS Kermit, whose definition is:
  31.  
  32.   set parity mark
  33.   set flow none
  34.   set handshake xon ; or set local-echo on
  35.   set duplex half
  36.  
  37. If mark parity doesn't do it, try even.
  38.  
  39. >Q3. What are the most effecient settings for such a transfer with 
  40. >    IBM system/370 kermit ver 4.3.1 and MS-DOS Kermit 3.14?
  41. >
  42. The answer to questions like this always depends on the particulars of the
  43. connection, including all the devices, drivers, boxes, converters, front
  44. ends, and so forth from one end to the other, and probably also the load
  45. on the TSO system and its front end, not to mention the PC's speed, TSR
  46. population, and myriad other configuration items (disk caching, etc) that
  47. Kermit must work under.
  48.  
  49. If we knew ideal AND foolproof settings, they would be the ones used by
  50. default.  We do know "foolproof", and they *are* the default (provided you
  51. get the communications basics like parity, etc, right), but "ideal" always
  52. requires some experimentation.  It's the old tradeoff -- speed versus
  53. dependability.
  54.  
  55. - Frank